home *** CD-ROM | disk | FTP | other *** search
- package koala.dynamicjava.interpreter.context;
-
- import java.util.Map;
- import java.util.Set;
-
- public interface SimpleContext {
- void enterScope();
-
- void enterScope(Set var1);
-
- void defineVariables(Set var1);
-
- Set getCurrentScopeVariables();
-
- Set getCurrentScopeVariableNames();
-
- Set leaveScope();
-
- boolean isDefinedVariable(String var1);
-
- boolean isFinal(String var1);
-
- void define(String var1, Object var2);
-
- void defineConstant(String var1, Object var2);
-
- Object get(String var1);
-
- void set(String var1, Object var2);
-
- void setConstant(String var1, Object var2);
-
- void setVariable(String var1, Object var2);
-
- Map getConstants();
- }
-